home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (4th Edition) / The Business Master - 4th Edition.iso / files / comphelp / whatvga / files.txt < prev    next >
File List  |  1993-11-26  |  3KB  |  112 lines

  1.         Disk Drives And Files
  2.  
  3.     A computer by itself is about as
  4. useful as roller skates in a swimming
  5. pool.  To be of any use, it needs
  6. information. Information is divided
  7. into two categories, data and
  8. programs.  Data takes many forms,
  9. including pictures, text, numbers or
  10. sound effects. Programs are sets of
  11. instructions telling the computer how
  12. to operate on the data.
  13.     Programs and data live in files.
  14. A file is a named group of magnetic
  15. codes, usually stored on a disk.
  16.     Most computers have a built in
  17. hard disk.  It is a stack of disks
  18. which spin very fast.  They are
  19. coated with magnetic material on
  20. which electrical signals can be
  21. recorded, just like a video tape
  22. holds a movie.
  23.     Since the hard disk is built in,
  24. most computers are also equipped with
  25. one or more floppy disk drives and
  26. possibly a CD-ROM drive.  Floppy
  27. disks make an excellent way to store
  28. and transport programs from one
  29. computer to another. A CD-ROM disk can
  30. hold as much data as a large hard
  31. disk, but it is slower.
  32.     When a typical computer starts,
  33. it offers a "C Prompt" which looks
  34. like this:
  35.  
  36. C:\>
  37.  
  38. The C means disk drive C, which is
  39. usually the hard disk. The first
  40. floppy drive is designated as A, and
  41. if there is a second floppy drive, it
  42. is B.  A CD-ROM is often disk drive
  43. D, although the exact letter may
  44. vary, since a second hard disk or a
  45. portion of the main hard disk can be
  46. designated with it's own letter.
  47.     To perform an operation on a disk
  48. in a specified drive, type the drive
  49. letter, a colon, then the filename.
  50. Example:
  51.  
  52. COPY C:MYFILE A:YOURFILE
  53.  
  54.    This example copies a file called
  55. MYFILE from the hard disk C to a
  56. floppy disk in drive A, and names the
  57. new copy YOURFILE.
  58.    If you do not specify a drive,
  59. then the operation will be performed
  60. on the default drive.  The default
  61. drive letter is indicated as part of
  62. the "C Prompt."  This works exactly
  63. the same as the previous example:
  64.  
  65. COPY MYFILE A:YOURFILE
  66.  
  67.     To switch drives, you type
  68. disk letter followed by a colon
  69. (capital semi-colon) on the command
  70. line (the DOS prompt), and press
  71. [Enter].  If switching to a floppy or
  72. CD-ROM, there ought to be a disk in
  73. the drive first, otherwise DOS will
  74. wait quite a long while for you to
  75. insert a disk.
  76.     If you switch to drive A by
  77. typing A: (and press [Enter]) then
  78. your "C Prompt" becomes an A Prompt.
  79. It will look like this:
  80.  
  81. A:\>_
  82.  
  83. This is called "logging to drive A."
  84.     To see a list of files on a disk,
  85. type DIR and press [Enter]. If there
  86. are more files than will fit on the
  87. screen at one time, use DIR/P to
  88. pause the list.
  89.  
  90.     If you are logged onto drive C,
  91. and want to see which files are on a
  92. floppy in drive A, you can type:
  93.  
  94. DIR A:
  95.  
  96. or
  97.  
  98. DIR A:/P
  99.  
  100. to pause the list.
  101.  
  102.    If there are hundreds or even
  103. thousands of files on a disk, they
  104. may be structured in directories,
  105. which are like folders in a filing
  106. cabinet.  See the section about
  107. directories for more information.
  108.  
  109. _____________________________________
  110.                          end of file.
  111.  
  112.